RStudio is the most common used integrated development environment (IDE) among R users. The easy to use but powerful interface enhance the efficieny and quality of writing better R code. On the late May this year, the RStudio team annouced the new version of RStudio (0.99) which provides more features to make it even better.
In previous version of RStudio, using the view() feature users can at most previewing 1000 rows of data. If we needs to look at a middle part of data, we need to subset the data by code and then run the data viewer. And now, the data viewer can preview as much row as the data contains. What’s more exciting, the user can only preview the data in last version, but the current version can let users to interact with the data directly in the data viewer. It allows users click to filter, sort, and/or search within the data viewer without scripting.
This new functionality can help with data screening on the exploratory stage. The easy and intutative way can help user to understand more the data before further analysis.
data("mtcars")
View(mtcars)
More on Data viewer documentation